home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-01 / oleo130s.zip / OLEO130S.TAR / oleo-1.3 / configure < prev    next >
Text File  |  1993-03-18  |  16KB  |  666 lines

  1. #!/bin/sh
  2. # Guess values for system-dependent variables and create Makefiles.
  3. # Generated automatically using autoconf.
  4. # Copyright (C) 1991, 1992 Free Software Foundation, Inc.
  5.  
  6. # This program is free software; you can redistribute it and/or modify
  7. # it under the terms of the GNU General Public License as published by
  8. # the Free Software Foundation; either version 2, or (at your option)
  9. # any later version.
  10.  
  11. # This program is distributed in the hope that it will be useful,
  12. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. # GNU General Public License for more details.
  15.  
  16. # You should have received a copy of the GNU General Public License
  17. # along with this program; if not, write to the Free Software
  18. # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  19.  
  20. # Usage: configure [--srcdir=DIR] [--host=HOST] [--gas] [--nfp] [--no-create]
  21. #        [--prefix=PREFIX] [--exec-prefix=PREFIX] [--with-PACKAGE] [TARGET]
  22. # Ignores all args except --srcdir, --prefix, --exec-prefix, --no-create, and
  23. # --with-PACKAGE unless this script has special code to handle it.
  24.  
  25.  
  26. for arg
  27. do
  28.   # Handle --exec-prefix with a space before the argument.
  29.   if test x$next_exec_prefix = xyes; then exec_prefix=$arg; next_exec_prefix=
  30.   # Handle --host with a space before the argument.
  31.   elif test x$next_host = xyes; then next_host=
  32.   # Handle --prefix with a space before the argument.
  33.   elif test x$next_prefix = xyes; then prefix=$arg; next_prefix=
  34.   # Handle --srcdir with a space before the argument.
  35.   elif test x$next_srcdir = xyes; then srcdir=$arg; next_srcdir=
  36.   else
  37.     case $arg in
  38.      # For backward compatibility, also recognize exact --exec_prefix.
  39.      -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* | --exec=* | --exe=* | --ex=* | --e=*)
  40.     exec_prefix=`echo $arg | sed 's/[-a-z_]*=//'` ;;
  41.      -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- | --exec | --exe | --ex | --e)
  42.     next_exec_prefix=yes ;;
  43.  
  44.      -gas | --gas | --ga | --g) ;;
  45.  
  46.      -host=* | --host=* | --hos=* | --ho=* | --h=*) ;;
  47.      -host | --host | --hos | --ho | --h)
  48.     next_host=yes ;;
  49.  
  50.      -nfp | --nfp | --nf) ;;
  51.  
  52.      -no-create | --no-create | --no-creat | --no-crea | --no-cre | --no-cr | --no-c | --no- | --no)
  53.         no_create=1 ;;
  54.  
  55.      -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
  56.     prefix=`echo $arg | sed 's/[-a-z_]*=//'` ;;
  57.      -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
  58.     next_prefix=yes ;;
  59.  
  60.      -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=* | --s=*)
  61.     srcdir=`echo $arg | sed 's/[-a-z_]*=//'` ;;
  62.      -srcdir | --srcdir | --srcdi | --srcd | --src | --sr | --s)
  63.     next_srcdir=yes ;;
  64.  
  65.      -with-* | --with-*)
  66.        package=`echo $arg|sed 's/-*with-//'`
  67.        # Delete all the valid chars; see if any are left.
  68.        if test -n "`echo $package|sed 's/[-a-zA-Z0-9_]*//g'`"; then
  69.          echo "configure: $package: invalid package name" >&2; exit 1
  70.        fi
  71.        eval "with_`echo $package|sed s/-/_/g`=1" ;;
  72.  
  73.      *) ;;
  74.     esac
  75.   fi
  76. done
  77.  
  78. trap 'rm -f conftest* core; exit 1' 1 3 15
  79.  
  80. rm -f conftest*
  81. compile='${CC-cc} $DEFS conftest.c -o conftest $LIBS >/dev/null 2>&1'
  82.  
  83. # A filename unique to this package, relative to the directory that
  84. # configure is in, which we can look for to find out if srcdir is correct.
  85. unique_file=io-term.c
  86.  
  87. # Find the source files, if location was not specified.
  88. if test -z "$srcdir"; then
  89.   srcdirdefaulted=yes
  90.   # Try the directory containing this script, then `..'.
  91.   prog=$0
  92.   confdir=`echo $prog|sed 's%/[^/][^/]*$%%'`
  93.   test "X$confdir" = "X$prog" && confdir=.
  94.   srcdir=$confdir
  95.   if test ! -r $srcdir/$unique_file; then
  96.     srcdir=..
  97.   fi
  98. fi
  99. if test ! -r $srcdir/$unique_file; then
  100.   if test x$srcdirdefaulted = xyes; then
  101.     echo "configure: Can not find sources in \`${confdir}' or \`..'." 1>&2
  102.   else
  103.     echo "configure: Can not find sources in \`${srcdir}'." 1>&2
  104.   fi
  105.   exit 1
  106. fi
  107. # Preserve a srcdir of `.' to avoid automounter screwups with pwd.
  108. # But we can't avoid them for `..', to make subdirectories work.
  109. case $srcdir in
  110.   .|/*|~*) ;;
  111.   *) srcdir=`cd $srcdir; pwd` ;; # Make relative path absolute.
  112. esac
  113.  
  114.  
  115.  
  116. if test -z "$CC"; then
  117.   echo checking for gcc
  118.   saveifs="$IFS"; IFS="${IFS}:"
  119.   for dir in $PATH; do
  120.     test -z "$dir" && dir=.
  121.     if test -f $dir/gcc; then
  122.       CC="gcc"
  123.       break
  124.     fi
  125.   done
  126.   IFS="$saveifs"
  127. fi
  128. test -z "$CC" && CC="cc"
  129.  
  130. # Find out if we are using GNU C, under whatever name.
  131. cat > conftest.c <<EOF
  132. #ifdef __GNUC__
  133.   yes
  134. #endif
  135. EOF
  136. ${CC-cc} -E conftest.c > conftest.out 2>&1
  137. if egrep yes conftest.out >/dev/null 2>&1; then
  138.   GCC=1 # For later tests.
  139. fi
  140. rm -f conftest*
  141.  
  142. echo checking how to run the C preprocessor
  143. if test -z "$CPP"; then
  144.   CPP='${CC-cc} -E'
  145.   cat > conftest.c <<EOF
  146.  
  147. #include <stdio.h>
  148. EOF
  149. err=`eval "$CPP $DEFS conftest.c 2>&1 >/dev/null"`
  150. if test -z "$err"; then
  151.   :
  152. else
  153.   CPP=/lib/cpp
  154. fi
  155. rm -f conftest*
  156. fi
  157.  
  158. if test -z "$YACC"; then
  159.   echo checking for bison
  160.   saveifs="$IFS"; IFS="${IFS}:"
  161.   for dir in $PATH; do
  162.     test -z "$dir" && dir=.
  163.     if test -f $dir/bison; then
  164.       YACC="bison -y"
  165.       break
  166.     fi
  167.   done
  168.   IFS="$saveifs"
  169. fi
  170. test -z "$YACC" && YACC=""
  171.  
  172. if test -z "$YACC"; then
  173.   echo checking for byacc
  174.   saveifs="$IFS"; IFS="${IFS}:"
  175.   for dir in $PATH; do
  176.     test -z "$dir" && dir=.
  177.     if test -f $dir/byacc; then
  178.       YACC="byacc"
  179.       break
  180.     fi
  181.   done
  182.   IFS="$saveifs"
  183. fi
  184. test -z "$YACC" && YACC="yacc"
  185.  
  186.  
  187. # Make sure to not get the incompatible SysV /etc/install and
  188. # /usr/sbin/install, which might be in PATH before a BSD-like install,
  189. # or the SunOS /usr/etc/install directory, or the AIX /bin/install,
  190. # or the AFS install, which mishandles nonexistent args.  (Sigh.)
  191. if test -z "$INSTALL"; then
  192.   echo checking for install
  193.   saveifs="$IFS"; IFS="${IFS}:"
  194.   for dir in $PATH; do
  195.     test -z "$dir" && dir=.
  196.     case $dir in
  197.     /etc|/usr/sbin|/usr/etc|/usr/afsws/bin) ;;
  198.     *)
  199.       if test -f $dir/install; then
  200.     if grep dspmsg $dir/install >/dev/null 2>&1; then
  201.       : # AIX
  202.     else
  203.       INSTALL="$dir/install -c"
  204.       INSTALL_PROGRAM='$(INSTALL)'
  205.       INSTALL_DATA='$(INSTALL) -m 644'
  206.       break
  207.     fi
  208.       fi
  209.       ;;
  210.     esac
  211.   done
  212.   IFS="$saveifs"
  213. fi
  214. INSTALL=${INSTALL-cp}
  215. INSTALL_PROGRAM=${INSTALL_PROGRAM-'$(INSTALL)'}
  216. INSTALL_DATA=${INSTALL_DATA-'$(INSTALL)'}
  217.  
  218.  
  219. echo checking for POSIXized ISC
  220. if test -d /etc/conf/kconfig.d &&
  221.   grep _POSIX_VERSION /usr/include/sys/unistd.h >/dev/null 2>&1
  222. then
  223.   ISC=1 # If later tests want to check for ISC.
  224.   DEFS="$DEFS -D_POSIX_SOURCE=1"
  225.   if test -n "$GCC"; then
  226.     CC="$CC -posix"
  227.   else
  228.     CC="$CC -Xp"
  229.   fi
  230. fi
  231.  
  232.  
  233. echo checking for ANSI C header files
  234. cat > conftest.c <<EOF
  235.  
  236. #include <stdlib.h>
  237. #include <stdarg.h>
  238. #include <string.h>
  239. #include <float.h>
  240. EOF
  241. err=`eval "$CPP $DEFS conftest.c 2>&1 >/dev/null"`
  242. if test -z "$err"; then
  243.   # SunOS string.h does not declare mem*, contrary to ANSI.
  244. echo '#include <string.h>' > conftest.c
  245. eval "$CPP $DEFS conftest.c > conftest.out 2>&1"
  246. if egrep "memchr" conftest.out >/dev/null 2>&1; then
  247.   # SGI's /bin/cc from Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi.
  248. cat > conftest.c <<EOF
  249. #include <ctype.h>
  250. #define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
  251. #define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))
  252. #define XOR(e,f) (((e) && !(f)) || (!(e) && (f)))
  253. int main () { int i; for (i = 0; i < 256; i++)
  254. if (XOR (islower (i), ISLOWER (i)) || toupper (i) != TOUPPER (i)) exit(2);
  255. exit (0); }
  256.  
  257. EOF
  258. eval $compile
  259. if test -s conftest && (./conftest; exit) 2>/dev/null; then
  260.   DEFS="$DEFS -DSTDC_HEADERS=1"
  261. fi
  262. rm -f conftest*
  263. fi
  264. rm -f conftest*
  265.  
  266. fi
  267. rm -f conftest*
  268.  
  269. echo checking for unistd.h
  270. cat > conftest.c <<EOF
  271.  
  272. #include <unistd.h>
  273. EOF
  274. err=`eval "$CPP $DEFS conftest.c 2>&1 >/dev/null"`
  275. if test -z "$err"; then
  276.   DEFS="$DEFS -DHAVE_UNISTD_H=1"
  277. fi
  278. rm -f conftest*
  279.  
  280. echo checking for directory library header
  281. echo checking for dirent.h
  282. cat > conftest.c <<EOF
  283.  
  284. #include <dirent.h>
  285. EOF
  286. err=`eval "$CPP $DEFS conftest.c 2>&1 >/dev/null"`
  287. if test -z "$err"; then
  288.   DEFS="$DEFS -DDIRENT=1" dirheader=dirent.h
  289. fi
  290. rm -f conftest*
  291.  
  292. if test -z "$dirheader"; then
  293. echo checking for sys/ndir.h
  294. cat > conftest.c <<EOF
  295.  
  296. #include <sys/ndir.h>
  297. EOF
  298. err=`eval "$CPP $DEFS conftest.c 2>&1 >/dev/null"`
  299. if test -z "$err"; then
  300.   DEFS="$DEFS -DSYSNDIR=1" dirheader=sys/ndir.h
  301. fi
  302. rm -f conftest*
  303.  
  304. fi
  305. if test -z "$dirheader"; then
  306. echo checking for sys/dir.h
  307. cat > conftest.c <<EOF
  308.  
  309. #include <sys/dir.h>
  310. EOF
  311. err=`eval "$CPP $DEFS conftest.c 2>&1 >/dev/null"`
  312. if test -z "$err"; then
  313.   DEFS="$DEFS -DSYSDIR=1" dirheader=sys/dir.h
  314. fi
  315. rm -f conftest*
  316.  
  317. fi
  318. if test -z "$dirheader"; then
  319. echo checking for ndir.h
  320. cat > conftest.c <<EOF
  321.  
  322. #include <ndir.h>
  323. EOF
  324. err=`eval "$CPP $DEFS conftest.c 2>&1 >/dev/null"`
  325. if test -z "$err"; then
  326.   DEFS="$DEFS -DNDIR=1" dirheader=ndir.h
  327. fi
  328. rm -f conftest*
  329.  
  330. fi
  331.  
  332. echo checking for closedir return value
  333. cat > conftest.c <<EOF
  334. #include <sys/types.h>
  335. #include <$dirheader>
  336. int closedir(); main() { exit(0); }
  337. EOF
  338. eval $compile
  339. if test -s conftest && (./conftest; exit) 2>/dev/null; then
  340.   :
  341. else
  342.   DEFS="$DEFS -DVOID_CLOSEDIR=1"
  343. fi
  344. rm -f conftest*
  345.  
  346. for hdr in sys/time.h string.h memory.h sys/select.h
  347. do
  348. trhdr=HAVE_`echo $hdr | tr '[a-z]./' '[A-Z]__'`
  349. echo checking for ${hdr}
  350. cat > conftest.c <<EOF
  351.  
  352. #include <${hdr}>
  353. EOF
  354. err=`eval "$CPP $DEFS conftest.c 2>&1 >/dev/null"`
  355. if test -z "$err"; then
  356.   DEFS="$DEFS -D${trhdr}=1"
  357. fi
  358. rm -f conftest*
  359. done
  360.  
  361. test -f /lib/libsocket.a -o -f /lib/libsocket.so && LIBS="$LIBS -lsocket"
  362. test -f /lib/libnsl.a -o -f /lib/libnsl.so && LIBS="$LIBS -lnsl"
  363. echo checking for X11/X.h
  364. cat > conftest.c <<EOF
  365.  
  366. #include <X11/X.h>
  367. EOF
  368. err=`eval "$CPP $DEFS conftest.c 2>&1 >/dev/null"`
  369. if test -z "$err"; then
  370.   DEFS="$DEFS -DHAVE_X11_X_H=1"; LIBS="$LIBS -lX11"
  371. fi
  372. rm -f conftest*
  373.  
  374.  
  375. echo checking for return type of signal handlers
  376. cat > conftest.c <<EOF
  377. #include <sys/types.h>
  378. #include <signal.h>
  379. #ifdef signal
  380. #undef signal
  381. #endif
  382. extern void (*signal ()) ();
  383. main() { exit(0); } 
  384. t() { int i; }
  385. EOF
  386. if eval $compile; then
  387.   DEFS="$DEFS -DRETSIGTYPE=void"
  388. else
  389.   DEFS="$DEFS -DRETSIGTYPE=int"
  390. fi
  391. rm -f conftest*
  392.  
  393.  
  394. # The Ultrix 4.2 mips builtin alloca declared by alloca.h only works
  395. # for constant arguments.  Useless!
  396. echo checking for working alloca.h
  397. cat > conftest.c <<EOF
  398. #include <alloca.h>
  399. main() { exit(0); } 
  400. t() { char *p = alloca(2 * sizeof(int)); }
  401. EOF
  402. if eval $compile; then
  403.   DEFS="$DEFS -DHAVE_ALLOCA_H=1"
  404. fi
  405. rm -f conftest*
  406.  
  407. decl="#ifdef __GNUC__
  408. #define alloca __builtin_alloca
  409. #else
  410. #if HAVE_ALLOCA_H
  411. #include <alloca.h>
  412. #else
  413. #ifdef _AIX
  414.  #pragma alloca
  415. #else
  416. char *alloca ();
  417. #endif
  418. #endif
  419. #endif
  420. "
  421. echo checking for alloca
  422. cat > conftest.c <<EOF
  423. $decl
  424. main() { exit(0); } 
  425. t() { char *p = (char *) alloca(1); }
  426. EOF
  427. if eval $compile; then
  428.   :
  429. else
  430.   alloca_missing=1
  431. fi
  432. rm -f conftest*
  433.  
  434. if test -n "$alloca_missing"; then
  435.   # The SVR3 libPW and SVR4 libucb both contain incompatible functions
  436.   # that cause trouble.  Some versions do not even contain alloca or
  437.   # contain a buggy version.  If you still want to use their alloca,
  438.   # use ar to extract alloca.o from them instead of compiling alloca.c.
  439.   ALLOCA=alloca.o
  440. fi
  441.  
  442. for func in random
  443. do
  444. echo checking for ${func}
  445. cat > conftest.c <<EOF
  446.  
  447. main() { exit(0); } 
  448. t() { 
  449. /* Override any gcc2 internal prototype to avoid an error.  */
  450. extern char ${func}(); ${func}(); }
  451. EOF
  452. if eval $compile; then
  453.   :
  454. else
  455.   LIBOBJS="$LIBOBJS ${func}.o"
  456. fi
  457. rm -f conftest*
  458.  
  459. done
  460.  
  461.  
  462. need_doprnt=
  463. echo checking for vfprintf
  464. cat > conftest.c <<EOF
  465.  
  466. main() { exit(0); } 
  467. t() { vfprintf(); }
  468. EOF
  469. if eval $compile; then
  470.   :
  471. else
  472.   LIBOBJS="$LIBOBJS vfprintf.o"; need_doprnt=1
  473. fi
  474. rm -f conftest*
  475.  
  476. echo checking for vsprintf
  477. cat > conftest.c <<EOF
  478.  
  479. main() { exit(0); } 
  480. t() { vsprintf(); }
  481. EOF
  482. if eval $compile; then
  483.   :
  484. else
  485.   LIBOBJS="$LIBOBJS vsprintf.o"; need_doprnt=1
  486. fi
  487. rm -f conftest*
  488.  
  489. if test $need_doprnt; then
  490.   for func in _doprnt
  491. do
  492. echo checking for ${func}
  493. cat > conftest.c <<EOF
  494.  
  495. main() { exit(0); } 
  496. t() { 
  497. /* Override any gcc2 internal prototype to avoid an error.  */
  498. extern char ${func}(); ${func}(); }
  499. EOF
  500. if eval $compile; then
  501.   :
  502. else
  503.   LIBOBJS="$LIBOBJS ${func}.o"
  504. fi
  505. rm -f conftest*
  506.  
  507. done
  508.  
  509. fi
  510.  
  511. libname=`echo "termcap" | sed 's/lib\([^\.]*\)\.a/\1/;s/-l//'`
  512. LIBS_save="${LIBS}"
  513. LIBS="${LIBS} -l${libname}"
  514. have_lib=""
  515. echo checking for -ltermcap
  516. cat > conftest.c <<EOF
  517.  
  518. main() { exit(0); } 
  519. t() { main(); }
  520. EOF
  521. if eval $compile; then
  522.   have_lib="1"
  523. fi
  524. rm -f conftest*
  525. LIBS="${LIBS_save}"
  526. if test -n "${have_lib}"; then
  527.    :; \
  528.         LIBS="$LIBS -lcurses -ltermcap"
  529. else
  530.    :; \
  531.         libname=`echo "termlib" | sed 's/lib\(^\.*\)\.a/\1/;s/-l//'`
  532. LIBS_save="${LIBS}"
  533. LIBS="${LIBS} -l${libname}"
  534. have_lib=""
  535. echo checking for -ltermlib
  536. cat > conftest.c <<EOF
  537.  
  538. main() { exit(0); } 
  539. t() { main(); }
  540. EOF
  541. if eval $compile; then
  542.   have_lib="1"
  543. fi
  544. rm -f conftest*
  545. LIBS="${LIBS_save}"
  546. if test -n "${have_lib}"; then
  547.    :; \
  548.                 LIBS="$LIBS -lcurses -ltermlib"
  549. else
  550.    :; \
  551.                 LIBS="$LIBS -lcurses"
  552. fi
  553.  
  554. fi
  555.  
  556.  
  557. LIBS_save="$LIBS"
  558. LIBS="$LIBS -lm"
  559. compile='${CC-cc} $DEFS conftest.c -o conftest $LIBS >/dev/null 2>&1'
  560. for func in rint rename \
  561.           getcap stricmp strincmp cbreak \
  562.           strdup strstr
  563. do
  564. trfunc=HAVE_`echo $func | tr '[a-z]' '[A-Z]'`
  565. echo checking for ${func}
  566. cat > conftest.c <<EOF
  567. #include <stdio.h>
  568. main() { exit(0); } 
  569. t() { 
  570. #ifdef __stub_${func}
  571. choke me
  572. #else
  573. /* Override any gcc2 internal prototype to avoid an error.  */
  574. extern char ${func}(); ${func}();
  575. #endif
  576.  }
  577. EOF
  578. if eval $compile; then
  579.   DEFS="$DEFS -D${trfunc}=1"
  580. fi
  581. rm -f conftest*
  582. #endif
  583. done
  584.  
  585. LIBS="$LIBS_save"
  586.  
  587. if test -n "$prefix"; then
  588.   test -z "$exec_prefix" && exec_prefix='$(prefix)'
  589.   prsub="s%^prefix[     ]*=.*$%prefix = $prefix%"
  590. fi
  591. if test -n "$exec_prefix"; then
  592.   prsub="$prsub
  593. s%^exec_prefix[     ]*=.*$%exec_prefix = $exec_prefix%"
  594. fi
  595.  
  596. trap 'rm -f config.status; exit 1' 1 3 15
  597. echo creating config.status
  598. rm -f config.status
  599. cat > config.status <<EOF
  600. #!/bin/sh
  601. # Generated automatically by configure.
  602. # Run this file to recreate the current configuration.
  603. # This directory was configured as follows,
  604. # on host `(hostname || uname -n) 2>/dev/null`:
  605. #
  606. # $0 $*
  607.  
  608. if test \$# -gt 0; then
  609.   case "\$1" in
  610.     -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
  611.     exec /bin/sh $0 $* ;;
  612.     *) echo "Usage: config.status --recheck" 2>&1; exit 1 ;;
  613.   esac
  614. fi
  615.  
  616. trap 'rm -f Makefile; exit 1' 1 3 15
  617. LIBS='$LIBS'
  618. CC='$CC'
  619. CPP='$CPP'
  620. YACC='$YACC'
  621. INSTALL='$INSTALL'
  622. INSTALL_PROGRAM='$INSTALL_PROGRAM'
  623. INSTALL_DATA='$INSTALL_DATA'
  624. ALLOCA='$ALLOCA'
  625. LIBOBJS='$LIBOBJS'
  626. srcdir='$srcdir'
  627. DEFS='$DEFS'
  628. prefix='$prefix'
  629. exec_prefix='$exec_prefix'
  630. prsub='$prsub'
  631. EOF
  632. cat >> config.status <<\EOF
  633.  
  634. top_srcdir=$srcdir
  635. for file in .. Makefile; do if [ "x$file" != "x.." ]; then
  636.   srcdir=$top_srcdir
  637.   # Remove last slash and all that follows it.  Not all systems have dirname.
  638.   dir=`echo $file|sed 's%/[^/][^/]*$%%'`
  639.   if test "$dir" != "$file"; then
  640.     test "$top_srcdir" != . && srcdir=$top_srcdir/$dir
  641.     test ! -d $dir && mkdir $dir
  642.   fi
  643.   echo creating $file
  644.   rm -f $file
  645.   echo "# Generated automatically from `basename $file`.in by configure." > $file
  646.   sed -e "
  647. $prsub
  648. s%@LIBS@%$LIBS%g
  649. s%@CC@%$CC%g
  650. s%@CPP@%$CPP%g
  651. s%@YACC@%$YACC%g
  652. s%@INSTALL@%$INSTALL%g
  653. s%@INSTALL_PROGRAM@%$INSTALL_PROGRAM%g
  654. s%@INSTALL_DATA@%$INSTALL_DATA%g
  655. s%@ALLOCA@%$ALLOCA%g
  656. s%@LIBOBJS@%$LIBOBJS%g
  657. s%@srcdir@%$srcdir%g
  658. s%@DEFS@%$DEFS%
  659. " $top_srcdir/${file}.in >> $file
  660. fi; done
  661.  
  662. EOF
  663. chmod +x config.status
  664. test -n "$no_create" || ./config.status
  665.  
  666.